home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Communications / Converse / Source / MessageProtocol.h < prev    next >
Text File  |  1995-12-12  |  567b  |  16 lines

  1. @class User;
  2.  
  3. //** I have not been able to get NSString to encode and be passed.
  4. //**   for this reason I am using type "const char*".
  5.  
  6. @protocol MessageProtocol
  7. /* postMessage: - post message to another machine, indicating who sent it. */
  8. - (oneway void)postMessage:(bycopy in const char *)msg fromAuthor:(bycopy in User*)author;
  9. /* author - pass the user information to a requesting machine. */
  10. - (bycopy User*)author;
  11.  
  12. //** create list of machines running this application on the network
  13. - createNetworkNameList:nameList forMachine:(const char *)originator;
  14.  
  15. @end
  16.